-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
stdbuf: use exec instead of forking #9495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
stdbuf: use exec instead of forking #9495
Conversation
|
GNU testsuite comparison: |
|
The CI errors are unrelated to my branch. |
This comment was marked as resolved.
This comment was marked as resolved.
forking creates a new PID and it not compatible with GNU coreutils implementation. Fixes uutils#9066 Signed-off-by: Etienne Cordonnier <[email protected]>
de2b66c to
0110357
Compare
|
GNU testsuite comparison: |
CodSpeed Performance ReportMerging #9495 will not alter performanceComparing Summary
Footnotes
|
|
GNU testsuite comparison: |
Signed-off-by: Etienne Cordonnier <[email protected]>
0d7529b to
4c557bf
Compare
|
GNU testsuite comparison: |
|
This is ready for review. I don't intend to work on this branch any more. |
forking creates a new PID and it not compatible with GNU coreutils implementation.
Fixes #9066